home *** CD-ROM | disk | FTP | other *** search
/ Mac Power 1997 December / MACPOWER-1997-12.ISO.7z / MACPOWER-1997-12.ISO / AMUG / PROGRAMMING / WASTE Object Handlers 1.2.6.sit / WASTE Object Handlers 1.2.6 / Handler Headers / WE_PICT_Handler.h < prev    next >
Text File  |  1997-09-08  |  589b  |  28 lines

  1. // PICT Object Handler for the WASTE Text Engine
  2. // by Michael F. Kamprath, kamprath@kagi.com
  3. // maintenance by John C. Daub, hsoi@eden.com
  4.  
  5. #ifndef __TYPES__
  6. #include <Types.h>
  7. #endif
  8.  
  9.  
  10. #ifdef __cplusplus
  11. extern "C" {
  12. #endif
  13.  
  14.  
  15. pascal OSErr    HandleNewPicture(Point *defaultObjectSize,WEObjectReference objectRef);
  16. pascal OSErr    HandleDisposePicture(WEObjectReference objectRef );
  17. pascal OSErr    HandleDrawPicture (Rect *destRect, WEObjectReference objectRef );
  18.  
  19. #ifdef __cplusplus
  20. }
  21. #endif
  22.  
  23. #ifdef __cplusplus
  24. const    ResType        kTypePicture    =    'PICT';
  25. #else
  26. #define                kTypePicture        'PICT'
  27. #endif
  28.